
    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_011be1bc687822b36965f82a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_37961a9088abd0b2c30db850.woff')format("woff");}.ff2{font-family:ff2;line-height:1.122559;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_dd39e93227d4136e2269bd3c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_9656e4c598d73891d17043d5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_65bab88187fd3ccf6c91d2fb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.207031;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_61ca4a69e9cc282baf2e8bf9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4491a9f95881483f3d4ca70a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.710449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_83f2e4eb60f1ded345f74409.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9ed056faa0e9fc1dcc928035.woff')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_faf662f56c1f2d5f5c62eb90.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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.238047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238047,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245751,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255534,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.268433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268433,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.314556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314556,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-36.778279px;}
.v2{vertical-align:-27.000000px;}
.v6{vertical-align:-15.048568px;}
.v3{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:4.607715px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:33.120000px;}
.v9{vertical-align:44.884274px;}
.v8{vertical-align:47.880000px;}
.lsc{letter-spacing:-1.303721px;}
.lsd{letter-spacing:-1.169699px;}
.lsa{letter-spacing:-1.083285px;}
.lse{letter-spacing:-0.971924px;}
.lsb{letter-spacing:-0.932129px;}
.ls1b{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.180000px;}
.ls16{letter-spacing:-0.177000px;}
.ls5{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.009360px;}
.ls1a{letter-spacing:0.045360px;}
.ls18{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.101280px;}
.lsf{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.300000px;}
.ls19{letter-spacing:2.880000px;}
.ls10{letter-spacing:3.240000px;}
.ls6{letter-spacing:6.120000px;}
.ls15{letter-spacing:7.200000px;}
.ls17{letter-spacing:7.920000px;}
.ls13{letter-spacing:24.120000px;}
.ls7{letter-spacing:24.984000px;}
.ls8{letter-spacing:25.704000px;}
.ls1{letter-spacing:55.584000px;}
.ls12{letter-spacing:90.519506px;}
.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;}
}
.wsb{word-spacing:-77.448562px;}
.wsd{word-spacing:-45.230288px;}
.wsc{word-spacing:-43.926567px;}
.wse{word-spacing:-39.410949px;}
.wsa{word-spacing:-19.362141px;}
.ws9{word-spacing:-18.430012px;}
.ws16{word-spacing:-18.364083px;}
.ws8{word-spacing:-18.278856px;}
.ws11{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.882308px;}
.ws4{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.371727px;}
.ws3{word-spacing:-15.210000px;}
.ws13{word-spacing:-15.038881px;}
.ws12{word-spacing:-15.030000px;}
.ws19{word-spacing:-14.913120px;}
.ws1c{word-spacing:-14.850000px;}
.ws6{word-spacing:-12.150000px;}
.ws1{word-spacing:-11.979360px;}
.ws7{word-spacing:-11.970000px;}
.ws2{word-spacing:-9.720000px;}
.ws15{word-spacing:-8.755365px;}
.ws5{word-spacing:0.000000px;}
.wsf{word-spacing:162.003342px;}
.ws18{word-spacing:269.521799px;}
.ws17{word-spacing:601.776139px;}
.ws14{word-spacing:1020.552912px;}
.ws1b{word-spacing:2123.288737px;}
._30{margin-left:-417.747998px;}
._2f{margin-left:-384.583992px;}
._3b{margin-left:-382.090707px;}
._49{margin-left:-376.225071px;}
._38{margin-left:-371.322573px;}
._48{margin-left:-365.079467px;}
._39{margin-left:-352.030714px;}
._33{margin-left:-346.959824px;}
._4b{margin-left:-336.693008px;}
._31{margin-left:-333.844704px;}
._34{margin-left:-328.319749px;}
._4a{margin-left:-325.721555px;}
._37{margin-left:-320.419468px;}
._36{margin-left:-304.726723px;}
._32{margin-left:-300.487018px;}
._43{margin-left:-299.240541px;}
._46{margin-left:-295.847438px;}
._14{margin-left:-272.433048px;}
._2a{margin-left:-260.767444px;}
._2d{margin-left:-258.495870px;}
._41{margin-left:-254.659626px;}
._3a{margin-left:-251.069499px;}
._40{margin-left:-249.309445px;}
._45{margin-left:-245.156940px;}
._3e{margin-left:-241.424222px;}
._13{margin-left:-239.903951px;}
._44{margin-left:-231.194125px;}
._1e{margin-left:-194.254800px;}
._2b{margin-left:-178.428964px;}
._1b{margin-left:-172.760537px;}
._16{margin-left:-164.343544px;}
._35{margin-left:-161.913196px;}
._20{margin-left:-151.622954px;}
._12{margin-left:-144.027231px;}
._29{margin-left:-142.375825px;}
._2c{margin-left:-139.716776px;}
._42{margin-left:-125.380922px;}
._3f{margin-left:-123.523136px;}
._17{margin-left:-115.013823px;}
._11{margin-left:-113.575265px;}
._27{margin-left:-111.021027px;}
._1c{margin-left:-105.293373px;}
._15{margin-left:-103.243808px;}
._1a{margin-left:-99.403957px;}
._47{margin-left:-95.395627px;}
._19{margin-left:-80.858125px;}
._21{margin-left:-74.363701px;}
._1f{margin-left:-63.721337px;}
._28{margin-left:-56.628338px;}
._2e{margin-left:-51.984932px;}
._18{margin-left:-44.840904px;}
._4e{margin-left:-7.610160px;}
._25{margin-left:-3.731280px;}
._0{margin-left:-1.269360px;}
._1{width:1.104000px;}
._4{width:2.765520px;}
._5{width:4.088160px;}
._10{width:5.452560px;}
._6{width:6.460200px;}
._2{width:7.575120px;}
._4f{width:8.576040px;}
._3{width:9.606360px;}
._7{width:11.520000px;}
._b{width:12.864000px;}
._a{width:14.040000px;}
._f{width:15.360000px;}
._24{width:16.488000px;}
._4c{width:19.032000px;}
._8{width:20.160000px;}
._9{width:21.384000px;}
._23{width:22.680000px;}
._4d{width:24.048000px;}
._c{width:26.280000px;}
._d{width:27.432000px;}
._e{width:28.968000px;}
._26{width:30.048000px;}
._3c{width:31.968000px;}
._3d{width:33.024000px;}
._1d{width:1225.920000px;}
._22{width:1834.320000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(128,0,0);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.021462px;}
.fse{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs7{font-size:40.580648px;}
.fsc{font-size:42.851147px;}
.fs6{font-size:45.230288px;}
.fs2{font-size:47.880000px;}
.fs1{font-size:60.120000px;}
.fs9{font-size:60.155525px;}
.fsf{font-size:65.880000px;}
.fs8{font-size:69.486908px;}
.fsd{font-size:71.529232px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:73.456334px;}
.fs5{font-size:77.448562px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y72{bottom:3.733290px;}
.y9d{bottom:3.762869px;}
.y6c{bottom:4.161042px;}
.yd6{bottom:4.770000px;}
.yd9{bottom:4.860000px;}
.yd1{bottom:5.040000px;}
.yd4{bottom:5.130000px;}
.yac{bottom:5.793489px;}
.yc2{bottom:6.818265px;}
.y6a{bottom:8.977093px;}
.ydd{bottom:12.420000px;}
.y74{bottom:17.248824px;}
.yad{bottom:18.679763px;}
.y6e{bottom:19.225155px;}
.yc3{bottom:20.703539px;}
.y76{bottom:21.570212px;}
.yab{bottom:23.248019px;}
.y6b{bottom:24.041679px;}
.y9e{bottom:26.192113px;}
.y73{bottom:28.725437px;}
.yaa{bottom:28.966686px;}
.yc1{bottom:31.924608px;}
.y6d{bottom:32.016733px;}
.y75{bottom:33.046825px;}
.y69{bottom:36.833256px;}
.y9f{bottom:50.754408px;}
.y3{bottom:58.050000px;}
.y2{bottom:78.750000px;}
.y96{bottom:121.680000px;}
.y124{bottom:122.400000px;}
.yf5{bottom:139.590000px;}
.y95{bottom:151.380000px;}
.y123{bottom:152.280000px;}
.y2e{bottom:159.570000px;}
.yf4{bottom:160.290000px;}
.y94{bottom:172.080000px;}
.y122{bottom:172.980000px;}
.y2d{bottom:180.270000px;}
.y58{bottom:180.450000px;}
.yf3{bottom:180.990000px;}
.y93{bottom:192.780000px;}
.y121{bottom:193.680000px;}
.y2c{bottom:200.970000px;}
.y57{bottom:201.150000px;}
.yf2{bottom:201.690000px;}
.y120{bottom:214.380000px;}
.y2b{bottom:221.670000px;}
.yf1{bottom:222.390000px;}
.y92{bottom:222.480000px;}
.y56{bottom:230.850000px;}
.y102{bottom:232.920000px;}
.y2a{bottom:242.370000px;}
.yf0{bottom:243.090000px;}
.y11f{bottom:244.080000px;}
.y55{bottom:251.550000px;}
.y91{bottom:252.180000px;}
.y142{bottom:259.650000px;}
.y101{bottom:261.990000px;}
.y29{bottom:263.070000px;}
.yef{bottom:263.790000px;}
.y11e{bottom:264.780000px;}
.y83{bottom:265.950000px;}
.y54{bottom:272.280000px;}
.y90{bottom:272.910000px;}
.y141{bottom:280.380000px;}
.y28{bottom:283.800000px;}
.yee{bottom:284.520000px;}
.y100{bottom:284.790000px;}
.y11d{bottom:285.510000px;}
.y82{bottom:286.680000px;}
.yb7{bottom:295.050000px;}
.y140{bottom:301.080000px;}
.y53{bottom:301.800000px;}
.y8f{bottom:301.980000px;}
.y27{bottom:304.500000px;}
.yed{bottom:305.220000px;}
.y11c{bottom:306.210000px;}
.yb6{bottom:315.750000px;}
.y81{bottom:316.380000px;}
.y13f{bottom:321.780000px;}
.ycf{bottom:322.140000px;}
.y8e{bottom:324.750000px;}
.y26{bottom:325.200000px;}
.yec{bottom:325.920000px;}
.y52{bottom:331.680000px;}
.y11b{bottom:335.910000px;}
.yb5{bottom:336.450000px;}
.y13e{bottom:342.480000px;}
.yce{bottom:342.840000px;}
.y25{bottom:345.900000px;}
.y80{bottom:346.080000px;}
.yeb{bottom:346.620000px;}
.y51{bottom:352.380000px;}
.y11a{bottom:356.610000px;}
.yb4{bottom:357.150000px;}
.ycd{bottom:363.540000px;}
.y24{bottom:366.600000px;}
.y7f{bottom:366.780000px;}
.y13d{bottom:372.180000px;}
.y50{bottom:373.080000px;}
.yea{bottom:375.600000px;}
.y119{bottom:377.310000px;}
.yb3{bottom:377.850000px;}
.ycc{bottom:384.240000px;}
.y23{bottom:387.300000px;}
.y7e{bottom:387.480000px;}
.y118{bottom:398.010000px;}
.ye9{bottom:398.370000px;}
.yb2{bottom:398.550000px;}
.y13c{bottom:401.880000px;}
.y4f{bottom:402.780000px;}
.ycb{bottom:404.940000px;}
.y22{bottom:417.000000px;}
.y7d{bottom:417.180000px;}
.y117{bottom:418.620000px;}
.yb1{bottom:419.250000px;}
.y4e{bottom:423.480000px;}
.yca{bottom:425.640000px;}
.y13b{bottom:431.580000px;}
.y21{bottom:437.700000px;}
.y116{bottom:439.320000px;}
.yb0{bottom:439.950000px;}
.y4d{bottom:444.180000px;}
.yc9{bottom:446.340000px;}
.y7c{bottom:446.880000px;}
.y20{bottom:458.400000px;}
.y115{bottom:460.020000px;}
.y13a{bottom:461.280000px;}
.yc8{bottom:467.040000px;}
.y7b{bottom:467.580000px;}
.yaf{bottom:469.470000px;}
.y4c{bottom:473.880000px;}
.y1f{bottom:479.100000px;}
.y114{bottom:480.720000px;}
.yc7{bottom:487.740000px;}
.y139{bottom:490.980000px;}
.y4b{bottom:494.580000px;}
.ya9{bottom:495.195000px;}
.y7a{bottom:497.280000px;}
.y113{bottom:501.420000px;}
.yae{bottom:505.740000px;}
.yc6{bottom:508.440000px;}
.y1e{bottom:508.800000px;}
.y8d{bottom:509.970000px;}
.y138{bottom:511.680000px;}
.y4a{bottom:515.280000px;}
.y79{bottom:517.980000px;}
.y112{bottom:522.120000px;}
.yc5{bottom:529.140000px;}
.y1d{bottom:529.500000px;}
.y8c{bottom:532.740000px;}
.y49{bottom:535.980000px;}
.y78{bottom:538.680000px;}
.y137{bottom:541.380000px;}
.yc0{bottom:545.745000px;}
.y1c{bottom:550.200000px;}
.y111{bottom:551.640000px;}
.ya8{bottom:554.340000px;}
.y48{bottom:556.680000px;}
.y136{bottom:562.080000px;}
.yc4{bottom:566.670000px;}
.y77{bottom:568.200000px;}
.y1b{bottom:570.900000px;}
.ya7{bottom:575.040000px;}
.y47{bottom:577.380000px;}
.y110{bottom:581.520000px;}
.y135{bottom:582.780000px;}
.y1a{bottom:591.600000px;}
.yff{bottom:593.220000px;}
.y71{bottom:593.970000px;}
.ya6{bottom:595.740000px;}
.y46{bottom:598.080000px;}
.y70{bottom:599.160000px;}
.y10f{bottom:602.220000px;}
.ybf{bottom:607.800000px;}
.y19{bottom:612.300000px;}
.y134{bottom:612.480000px;}
.yfe{bottom:613.920000px;}
.y45{bottom:618.780000px;}
.y10e{bottom:622.920000px;}
.ya5{bottom:625.440000px;}
.ybe{bottom:628.500000px;}
.y18{bottom:633.000000px;}
.y133{bottom:633.180000px;}
.ydc{bottom:633.720000px;}
.yfd{bottom:634.620000px;}
.y44{bottom:639.480000px;}
.y10d{bottom:643.620000px;}
.ya4{bottom:646.140000px;}
.y17{bottom:653.700000px;}
.y132{bottom:653.880000px;}
.yfc{bottom:655.320000px;}
.y6f{bottom:657.480000px;}
.y68{bottom:657.495000px;}
.y43{bottom:660.180000px;}
.ybd{bottom:662.070000px;}
.y10c{bottom:664.320000px;}
.ya3{bottom:666.840000px;}
.yfb{bottom:676.050000px;}
.y42{bottom:680.910000px;}
.y16{bottom:683.250000px;}
.y131{bottom:683.610000px;}
.ybc{bottom:684.960000px;}
.y10b{bottom:685.050000px;}
.ya2{bottom:687.570000px;}
.yda{bottom:695.940000px;}
.yd3{bottom:696.030000px;}
.yfa{bottom:696.750000px;}
.y41{bottom:701.610000px;}
.ye8{bottom:703.860000px;}
.y130{bottom:704.310000px;}
.y10a{bottom:705.750000px;}
.yd0{bottom:706.200000px;}
.ya1{bottom:708.270000px;}
.y15{bottom:713.130000px;}
.y8b{bottom:717.270000px;}
.yf9{bottom:717.450000px;}
.ye7{bottom:724.560000px;}
.ydb{bottom:726.180000px;}
.y109{bottom:726.450000px;}
.yd7{bottom:726.540000px;}
.y67{bottom:726.630000px;}
.ya0{bottom:728.970000px;}
.y40{bottom:731.310000px;}
.y12f{bottom:734.010000px;}
.y8a{bottom:737.970000px;}
.yf8{bottom:738.150000px;}
.y14{bottom:742.200000px;}
.ye6{bottom:745.260000px;}
.y108{bottom:747.150000px;}
.y66{bottom:747.330000px;}
.y3f{bottom:752.010000px;}
.y9c{bottom:754.620000px;}
.y12e{bottom:754.710000px;}
.yd8{bottom:756.870000px;}
.y89{bottom:758.670000px;}
.y13{bottom:759.390000px;}
.ye5{bottom:765.960000px;}
.yd5{bottom:767.040000px;}
.yf7{bottom:767.220000px;}
.y107{bottom:767.850000px;}
.y3e{bottom:772.710000px;}
.y12d{bottom:775.410000px;}
.y12{bottom:776.670000px;}
.y65{bottom:776.940000px;}
.y88{bottom:779.370000px;}
.ye4{bottom:786.660000px;}
.yd2{bottom:787.110000px;}
.y106{bottom:788.550000px;}
.yf6{bottom:789.990000px;}
.y3d{bottom:793.410000px;}
.y11{bottom:793.950000px;}
.y87{bottom:800.070000px;}
.y12c{bottom:805.110000px;}
.ye3{bottom:807.360000px;}
.y64{bottom:807.900000px;}
.y105{bottom:809.250000px;}
.y10{bottom:811.140000px;}
.y3c{bottom:814.110000px;}
.y12b{bottom:825.810000px;}
.ye2{bottom:828.060000px;}
.yf{bottom:828.420000px;}
.y86{bottom:829.050000px;}
.y9b{bottom:832.470000px;}
.y104{bottom:838.320000px;}
.y63{bottom:838.950000px;}
.y3b{bottom:843.810000px;}
.ybb{bottom:844.800000px;}
.ye{bottom:845.700000px;}
.ye1{bottom:848.760000px;}
.y85{bottom:851.910000px;}
.y9a{bottom:853.170000px;}
.y12a{bottom:855.510000px;}
.y103{bottom:861.090000px;}
.y3a{bottom:864.510000px;}
.yba{bottom:865.500000px;}
.yd{bottom:872.430000px;}
.y62{bottom:872.970000px;}
.y129{bottom:876.210000px;}
.ye0{bottom:878.280000px;}
.y99{bottom:882.690000px;}
.y39{bottom:885.210000px;}
.yb9{bottom:894.480000px;}
.y61{bottom:896.820000px;}
.y128{bottom:896.910000px;}
.yc{bottom:901.590000px;}
.y38{bottom:905.910000px;}
.ydf{bottom:907.530000px;}
.y98{bottom:911.850000px;}
.yb8{bottom:917.250000px;}
.yb{bottom:925.620000px;}
.y60{bottom:926.610000px;}
.yde{bottom:930.300000px;}
.y97{bottom:934.710000px;}
.y37{bottom:935.430000px;}
.ya{bottom:945.600000px;}
.y5f{bottom:947.220000px;}
.y36{bottom:965.220000px;}
.y5e{bottom:967.920000px;}
.y9{bottom:984.840000px;}
.y35{bottom:985.920000px;}
.y5d{bottom:988.620000px;}
.y127{bottom:997.620000px;}
.y34{bottom:1006.620000px;}
.y8{bottom:1008.960000px;}
.y5c{bottom:1009.320000px;}
.y126{bottom:1018.320000px;}
.y33{bottom:1027.320000px;}
.y5b{bottom:1030.020000px;}
.y84{bottom:1036.320000px;}
.y125{bottom:1048.020000px;}
.y32{bottom:1057.020000px;}
.y5a{bottom:1059.540000px;}
.y7{bottom:1068.750000px;}
.y31{bottom:1077.750000px;}
.y6{bottom:1089.450000px;}
.y30{bottom:1098.450000px;}
.y5{bottom:1110.150000px;}
.y2f{bottom:1119.150000px;}
.y59{bottom:1139.670000px;}
.y4{bottom:1139.850000px;}
.y1{bottom:1192.230000px;}
.h28{height:22.050000px;}
.h25{height:22.140000px;}
.h27{height:22.230000px;}
.h13{height:28.176602px;}
.h14{height:31.385393px;}
.he{height:31.405014px;}
.h2a{height:35.220000px;}
.h26{height:35.332031px;}
.h29{height:36.281250px;}
.h7{height:38.158594px;}
.h12{height:39.827687px;}
.h16{height:41.772832px;}
.h1d{height:42.056057px;}
.hf{height:44.391054px;}
.h1a{height:46.124203px;}
.h21{height:48.899884px;}
.h11{height:50.400188px;}
.h3{height:52.428867px;}
.hc{height:56.174928px;}
.ha{height:58.975137px;}
.h8{height:59.004492px;}
.h19{height:59.009985px;}
.h18{height:59.039358px;}
.h20{height:60.589687px;}
.h2b{height:63.175781px;}
.h17{height:64.799173px;}
.h15{height:68.163671px;}
.h22{height:70.167104px;}
.h24{height:70.202030px;}
.h1f{height:70.628906px;}
.h2{height:70.664062px;}
.h1b{height:72.057507px;}
.h9{height:72.562500px;}
.h1c{height:74.567183px;}
.hb{height:75.093750px;}
.hd{height:75.973712px;}
.h4{height:80.111602px;}
.h6{height:81.374062px;}
.h5{height:84.535312px;}
.h10{height:91.544063px;}
.h23{height:115.086304px;}
.h1e{height:118.544063px;}
.h0{height:1262.790000px;}
.h1{height:1263.000000px;}
.w7{width:30.330000px;}
.wa{width:40.410000px;}
.we{width:40.440000px;}
.w8{width:40.500000px;}
.w9{width:50.490000px;}
.wf{width:50.580000px;}
.wc{width:60.750000px;}
.w10{width:60.780000px;}
.wd{width:64.020000px;}
.wb{width:90.990000px;}
.w3{width:187.344788px;}
.w5{width:308.107247px;}
.w2{width:348.457936px;}
.w11{width:429.780000px;}
.w4{width:574.645524px;}
.w6{width:654.064692px;}
.w0{width:892.890000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:1.648613px;}
.x25{left:3.409815px;}
.x37{left:8.010000px;}
.x17{left:21.300970px;}
.x11{left:27.286526px;}
.x18{left:32.417884px;}
.xe{left:38.274600px;}
.x23{left:48.561036px;}
.x2a{left:51.515317px;}
.x15{left:88.152617px;}
.x33{left:97.991775px;}
.xc{left:100.811720px;}
.xf{left:104.756273px;}
.x1{left:106.380000px;}
.x16{left:109.828247px;}
.x14{left:110.895000px;}
.x9{left:116.280000px;}
.x12{left:120.206144px;}
.x29{left:124.166385px;}
.xd{left:126.032267px;}
.x10{left:129.978318px;}
.x7{left:133.380000px;}
.xa{left:138.780000px;}
.x5{left:142.740000px;}
.x8{left:144.630000px;}
.x3{left:165.870000px;}
.x1d{left:183.270000px;}
.x46{left:185.880000px;}
.x1e{left:187.410000px;}
.x45{left:205.050000px;}
.x28{left:227.007548px;}
.x21{left:232.140000px;}
.x4{left:234.390000px;}
.x1b{left:248.430000px;}
.x3b{left:289.290000px;}
.xb{left:296.283699px;}
.x19{left:298.200000px;}
.x24{left:335.176879px;}
.x2f{left:337.350000px;}
.x38{left:339.780000px;}
.x2d{left:350.040000px;}
.x39{left:380.280000px;}
.x43{left:394.770000px;}
.x6{left:410.970000px;}
.x2b{left:414.480000px;}
.x3a{left:420.690000px;}
.x34{left:431.840231px;}
.x31{left:439.108770px;}
.x13{left:454.800000px;}
.x3d{left:456.870000px;}
.x3c{left:461.100000px;}
.x3f{left:500.700000px;}
.x26{left:517.619748px;}
.x40{left:541.140000px;}
.x35{left:551.548622px;}
.x32{left:558.802327px;}
.x3e{left:581.550000px;}
.x41{left:621.960000px;}
.x30{left:645.920961px;}
.x2e{left:676.500000px;}
.x27{left:681.090000px;}
.x2c{left:696.120000px;}
.x44{left:752.010000px;}
.x36{left:760.470000px;}
.x1f{left:763.260000px;}
.x2{left:764.340000px;}
.x47{left:765.420000px;}
.x42{left:767.580000px;}
.x1a{left:783.960000px;}
.x1c{left:785.400000px;}
.x20{left:787.650000px;}
@media print{
.v5{vertical-align:-32.691803pt;}
.v2{vertical-align:-24.000000pt;}
.v6{vertical-align:-13.376505pt;}
.v3{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:4.095747pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:29.440000pt;}
.v9{vertical-align:39.897133pt;}
.v8{vertical-align:42.560000pt;}
.lsc{letter-spacing:-1.158863pt;}
.lsd{letter-spacing:-1.039733pt;}
.lsa{letter-spacing:-0.962920pt;}
.lse{letter-spacing:-0.863932pt;}
.lsb{letter-spacing:-0.828559pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls16{letter-spacing:-0.157333pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.008320pt;}
.ls1a{letter-spacing:0.040320pt;}
.ls18{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.090027pt;}
.lsf{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.266667pt;}
.ls19{letter-spacing:2.560000pt;}
.ls10{letter-spacing:2.880000pt;}
.ls6{letter-spacing:5.440000pt;}
.ls15{letter-spacing:6.400000pt;}
.ls17{letter-spacing:7.040000pt;}
.ls13{letter-spacing:21.440000pt;}
.ls7{letter-spacing:22.208000pt;}
.ls8{letter-spacing:22.848000pt;}
.ls1{letter-spacing:49.408000pt;}
.ls12{letter-spacing:80.461784pt;}
.wsb{word-spacing:-68.843166pt;}
.wsd{word-spacing:-40.204700pt;}
.wsc{word-spacing:-39.045837pt;}
.wse{word-spacing:-35.031955pt;}
.wsa{word-spacing:-17.210792pt;}
.ws9{word-spacing:-16.382233pt;}
.ws16{word-spacing:-16.323630pt;}
.ws8{word-spacing:-16.247872pt;}
.ws11{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.895385pt;}
.ws4{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.441535pt;}
.ws3{word-spacing:-13.520000pt;}
.ws13{word-spacing:-13.367894pt;}
.ws12{word-spacing:-13.360000pt;}
.ws19{word-spacing:-13.256107pt;}
.ws1c{word-spacing:-13.200000pt;}
.ws6{word-spacing:-10.800000pt;}
.ws1{word-spacing:-10.648320pt;}
.ws7{word-spacing:-10.640000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws15{word-spacing:-7.782547pt;}
.ws5{word-spacing:0.000000pt;}
.wsf{word-spacing:144.002970pt;}
.ws18{word-spacing:239.574932pt;}
.ws17{word-spacing:534.912124pt;}
.ws14{word-spacing:907.158144pt;}
.ws1b{word-spacing:1887.367766pt;}
._30{margin-left:-371.331554pt;}
._2f{margin-left:-341.852437pt;}
._3b{margin-left:-339.636184pt;}
._49{margin-left:-334.422285pt;}
._38{margin-left:-330.064509pt;}
._48{margin-left:-324.515082pt;}
._39{margin-left:-312.916190pt;}
._33{margin-left:-308.408733pt;}
._4b{margin-left:-299.282674pt;}
._31{margin-left:-296.750848pt;}
._34{margin-left:-291.839777pt;}
._4a{margin-left:-289.530271pt;}
._37{margin-left:-284.817305pt;}
._36{margin-left:-270.868198pt;}
._32{margin-left:-267.099571pt;}
._43{margin-left:-265.991592pt;}
._46{margin-left:-262.975500pt;}
._14{margin-left:-242.162710pt;}
._2a{margin-left:-231.793283pt;}
._2d{margin-left:-229.774107pt;}
._41{margin-left:-226.364112pt;}
._3a{margin-left:-223.172888pt;}
._40{margin-left:-221.608396pt;}
._45{margin-left:-217.917280pt;}
._3e{margin-left:-214.599308pt;}
._13{margin-left:-213.247956pt;}
._44{margin-left:-205.505889pt;}
._1e{margin-left:-172.670933pt;}
._2b{margin-left:-158.603523pt;}
._1b{margin-left:-153.564922pt;}
._16{margin-left:-146.083150pt;}
._35{margin-left:-143.922841pt;}
._20{margin-left:-134.775959pt;}
._12{margin-left:-128.024205pt;}
._29{margin-left:-126.556289pt;}
._2c{margin-left:-124.192690pt;}
._42{margin-left:-111.449709pt;}
._3f{margin-left:-109.798343pt;}
._17{margin-left:-102.234509pt;}
._11{margin-left:-100.955791pt;}
._27{margin-left:-98.685358pt;}
._1c{margin-left:-93.594110pt;}
._15{margin-left:-91.772274pt;}
._1a{margin-left:-88.359073pt;}
._47{margin-left:-84.796113pt;}
._19{margin-left:-71.873889pt;}
._21{margin-left:-66.101068pt;}
._1f{margin-left:-56.641188pt;}
._28{margin-left:-50.336300pt;}
._2e{margin-left:-46.208829pt;}
._18{margin-left:-39.858581pt;}
._4e{margin-left:-6.764587pt;}
._25{margin-left:-3.316693pt;}
._0{margin-left:-1.128320pt;}
._1{width:0.981333pt;}
._4{width:2.458240pt;}
._5{width:3.633920pt;}
._10{width:4.846720pt;}
._6{width:5.742400pt;}
._2{width:6.733440pt;}
._4f{width:7.623147pt;}
._3{width:8.538987pt;}
._7{width:10.240000pt;}
._b{width:11.434667pt;}
._a{width:12.480000pt;}
._f{width:13.653333pt;}
._24{width:14.656000pt;}
._4c{width:16.917333pt;}
._8{width:17.920000pt;}
._9{width:19.008000pt;}
._23{width:20.160000pt;}
._4d{width:21.376000pt;}
._c{width:23.360000pt;}
._d{width:24.384000pt;}
._e{width:25.749333pt;}
._26{width:26.709333pt;}
._3c{width:28.416000pt;}
._3d{width:29.354667pt;}
._1d{width:1089.706667pt;}
._22{width:1630.506667pt;}
.fsa{font-size:31.130188pt;}
.fse{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:36.071687pt;}
.fsc{font-size:38.089908pt;}
.fs6{font-size:40.204700pt;}
.fs2{font-size:42.560000pt;}
.fs1{font-size:53.440000pt;}
.fs9{font-size:53.471578pt;}
.fsf{font-size:58.560000pt;}
.fs8{font-size:61.766141pt;}
.fsd{font-size:63.581540pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:65.294519pt;}
.fs5{font-size:68.843166pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:3.318480pt;}
.y9d{bottom:3.344772pt;}
.y6c{bottom:3.698704pt;}
.yd6{bottom:4.240000pt;}
.yd9{bottom:4.320000pt;}
.yd1{bottom:4.480000pt;}
.yd4{bottom:4.560000pt;}
.yac{bottom:5.149768pt;}
.yc2{bottom:6.060680pt;}
.y6a{bottom:7.979638pt;}
.ydd{bottom:11.040000pt;}
.y74{bottom:15.332288pt;}
.yad{bottom:16.604234pt;}
.y6e{bottom:17.089027pt;}
.yc3{bottom:18.403146pt;}
.y76{bottom:19.173522pt;}
.yab{bottom:20.664906pt;}
.y6b{bottom:21.370381pt;}
.y9e{bottom:23.281878pt;}
.y73{bottom:25.533722pt;}
.yaa{bottom:25.748165pt;}
.yc1{bottom:28.377429pt;}
.y6d{bottom:28.459318pt;}
.y75{bottom:29.374956pt;}
.y69{bottom:32.740672pt;}
.y9f{bottom:45.115029pt;}
.y3{bottom:51.600000pt;}
.y2{bottom:70.000000pt;}
.y96{bottom:108.160000pt;}
.y124{bottom:108.800000pt;}
.yf5{bottom:124.080000pt;}
.y95{bottom:134.560000pt;}
.y123{bottom:135.360000pt;}
.y2e{bottom:141.840000pt;}
.yf4{bottom:142.480000pt;}
.y94{bottom:152.960000pt;}
.y122{bottom:153.760000pt;}
.y2d{bottom:160.240000pt;}
.y58{bottom:160.400000pt;}
.yf3{bottom:160.880000pt;}
.y93{bottom:171.360000pt;}
.y121{bottom:172.160000pt;}
.y2c{bottom:178.640000pt;}
.y57{bottom:178.800000pt;}
.yf2{bottom:179.280000pt;}
.y120{bottom:190.560000pt;}
.y2b{bottom:197.040000pt;}
.yf1{bottom:197.680000pt;}
.y92{bottom:197.760000pt;}
.y56{bottom:205.200000pt;}
.y102{bottom:207.040000pt;}
.y2a{bottom:215.440000pt;}
.yf0{bottom:216.080000pt;}
.y11f{bottom:216.960000pt;}
.y55{bottom:223.600000pt;}
.y91{bottom:224.160000pt;}
.y142{bottom:230.800000pt;}
.y101{bottom:232.880000pt;}
.y29{bottom:233.840000pt;}
.yef{bottom:234.480000pt;}
.y11e{bottom:235.360000pt;}
.y83{bottom:236.400000pt;}
.y54{bottom:242.026667pt;}
.y90{bottom:242.586667pt;}
.y141{bottom:249.226667pt;}
.y28{bottom:252.266667pt;}
.yee{bottom:252.906667pt;}
.y100{bottom:253.146667pt;}
.y11d{bottom:253.786667pt;}
.y82{bottom:254.826667pt;}
.yb7{bottom:262.266667pt;}
.y140{bottom:267.626667pt;}
.y53{bottom:268.266667pt;}
.y8f{bottom:268.426667pt;}
.y27{bottom:270.666667pt;}
.yed{bottom:271.306667pt;}
.y11c{bottom:272.186667pt;}
.yb6{bottom:280.666667pt;}
.y81{bottom:281.226667pt;}
.y13f{bottom:286.026667pt;}
.ycf{bottom:286.346667pt;}
.y8e{bottom:288.666667pt;}
.y26{bottom:289.066667pt;}
.yec{bottom:289.706667pt;}
.y52{bottom:294.826667pt;}
.y11b{bottom:298.586667pt;}
.yb5{bottom:299.066667pt;}
.y13e{bottom:304.426667pt;}
.yce{bottom:304.746667pt;}
.y25{bottom:307.466667pt;}
.y80{bottom:307.626667pt;}
.yeb{bottom:308.106667pt;}
.y51{bottom:313.226667pt;}
.y11a{bottom:316.986667pt;}
.yb4{bottom:317.466667pt;}
.ycd{bottom:323.146667pt;}
.y24{bottom:325.866667pt;}
.y7f{bottom:326.026667pt;}
.y13d{bottom:330.826667pt;}
.y50{bottom:331.626667pt;}
.yea{bottom:333.866667pt;}
.y119{bottom:335.386667pt;}
.yb3{bottom:335.866667pt;}
.ycc{bottom:341.546667pt;}
.y23{bottom:344.266667pt;}
.y7e{bottom:344.426667pt;}
.y118{bottom:353.786667pt;}
.ye9{bottom:354.106667pt;}
.yb2{bottom:354.266667pt;}
.y13c{bottom:357.226667pt;}
.y4f{bottom:358.026667pt;}
.ycb{bottom:359.946667pt;}
.y22{bottom:370.666667pt;}
.y7d{bottom:370.826667pt;}
.y117{bottom:372.106667pt;}
.yb1{bottom:372.666667pt;}
.y4e{bottom:376.426667pt;}
.yca{bottom:378.346667pt;}
.y13b{bottom:383.626667pt;}
.y21{bottom:389.066667pt;}
.y116{bottom:390.506667pt;}
.yb0{bottom:391.066667pt;}
.y4d{bottom:394.826667pt;}
.yc9{bottom:396.746667pt;}
.y7c{bottom:397.226667pt;}
.y20{bottom:407.466667pt;}
.y115{bottom:408.906667pt;}
.y13a{bottom:410.026667pt;}
.yc8{bottom:415.146667pt;}
.y7b{bottom:415.626667pt;}
.yaf{bottom:417.306667pt;}
.y4c{bottom:421.226667pt;}
.y1f{bottom:425.866667pt;}
.y114{bottom:427.306667pt;}
.yc7{bottom:433.546667pt;}
.y139{bottom:436.426667pt;}
.y4b{bottom:439.626667pt;}
.ya9{bottom:440.173333pt;}
.y7a{bottom:442.026667pt;}
.y113{bottom:445.706667pt;}
.yae{bottom:449.546667pt;}
.yc6{bottom:451.946667pt;}
.y1e{bottom:452.266667pt;}
.y8d{bottom:453.306667pt;}
.y138{bottom:454.826667pt;}
.y4a{bottom:458.026667pt;}
.y79{bottom:460.426667pt;}
.y112{bottom:464.106667pt;}
.yc5{bottom:470.346667pt;}
.y1d{bottom:470.666667pt;}
.y8c{bottom:473.546667pt;}
.y49{bottom:476.426667pt;}
.y78{bottom:478.826667pt;}
.y137{bottom:481.226667pt;}
.yc0{bottom:485.106667pt;}
.y1c{bottom:489.066667pt;}
.y111{bottom:490.346667pt;}
.ya8{bottom:492.746667pt;}
.y48{bottom:494.826667pt;}
.y136{bottom:499.626667pt;}
.yc4{bottom:503.706667pt;}
.y77{bottom:505.066667pt;}
.y1b{bottom:507.466667pt;}
.ya7{bottom:511.146667pt;}
.y47{bottom:513.226667pt;}
.y110{bottom:516.906667pt;}
.y135{bottom:518.026667pt;}
.y1a{bottom:525.866667pt;}
.yff{bottom:527.306667pt;}
.y71{bottom:527.973333pt;}
.ya6{bottom:529.546667pt;}
.y46{bottom:531.626667pt;}
.y70{bottom:532.586667pt;}
.y10f{bottom:535.306667pt;}
.ybf{bottom:540.266667pt;}
.y19{bottom:544.266667pt;}
.y134{bottom:544.426667pt;}
.yfe{bottom:545.706667pt;}
.y45{bottom:550.026667pt;}
.y10e{bottom:553.706667pt;}
.ya5{bottom:555.946667pt;}
.ybe{bottom:558.666667pt;}
.y18{bottom:562.666667pt;}
.y133{bottom:562.826667pt;}
.ydc{bottom:563.306667pt;}
.yfd{bottom:564.106667pt;}
.y44{bottom:568.426667pt;}
.y10d{bottom:572.106667pt;}
.ya4{bottom:574.346667pt;}
.y17{bottom:581.066667pt;}
.y132{bottom:581.226667pt;}
.yfc{bottom:582.506667pt;}
.y6f{bottom:584.426667pt;}
.y68{bottom:584.440000pt;}
.y43{bottom:586.826667pt;}
.ybd{bottom:588.506667pt;}
.y10c{bottom:590.506667pt;}
.ya3{bottom:592.746667pt;}
.yfb{bottom:600.933333pt;}
.y42{bottom:605.253333pt;}
.y16{bottom:607.333333pt;}
.y131{bottom:607.653333pt;}
.ybc{bottom:608.853333pt;}
.y10b{bottom:608.933333pt;}
.ya2{bottom:611.173333pt;}
.yda{bottom:618.613333pt;}
.yd3{bottom:618.693333pt;}
.yfa{bottom:619.333333pt;}
.y41{bottom:623.653333pt;}
.ye8{bottom:625.653333pt;}
.y130{bottom:626.053333pt;}
.y10a{bottom:627.333333pt;}
.yd0{bottom:627.733333pt;}
.ya1{bottom:629.573333pt;}
.y15{bottom:633.893333pt;}
.y8b{bottom:637.573333pt;}
.yf9{bottom:637.733333pt;}
.ye7{bottom:644.053333pt;}
.ydb{bottom:645.493333pt;}
.y109{bottom:645.733333pt;}
.yd7{bottom:645.813333pt;}
.y67{bottom:645.893333pt;}
.ya0{bottom:647.973333pt;}
.y40{bottom:650.053333pt;}
.y12f{bottom:652.453333pt;}
.y8a{bottom:655.973333pt;}
.yf8{bottom:656.133333pt;}
.y14{bottom:659.733333pt;}
.ye6{bottom:662.453333pt;}
.y108{bottom:664.133333pt;}
.y66{bottom:664.293333pt;}
.y3f{bottom:668.453333pt;}
.y9c{bottom:670.773333pt;}
.y12e{bottom:670.853333pt;}
.yd8{bottom:672.773333pt;}
.y89{bottom:674.373333pt;}
.y13{bottom:675.013333pt;}
.ye5{bottom:680.853333pt;}
.yd5{bottom:681.813333pt;}
.yf7{bottom:681.973333pt;}
.y107{bottom:682.533333pt;}
.y3e{bottom:686.853333pt;}
.y12d{bottom:689.253333pt;}
.y12{bottom:690.373333pt;}
.y65{bottom:690.613333pt;}
.y88{bottom:692.773333pt;}
.ye4{bottom:699.253333pt;}
.yd2{bottom:699.653333pt;}
.y106{bottom:700.933333pt;}
.yf6{bottom:702.213333pt;}
.y3d{bottom:705.253333pt;}
.y11{bottom:705.733333pt;}
.y87{bottom:711.173333pt;}
.y12c{bottom:715.653333pt;}
.ye3{bottom:717.653333pt;}
.y64{bottom:718.133333pt;}
.y105{bottom:719.333333pt;}
.y10{bottom:721.013333pt;}
.y3c{bottom:723.653333pt;}
.y12b{bottom:734.053333pt;}
.ye2{bottom:736.053333pt;}
.yf{bottom:736.373333pt;}
.y86{bottom:736.933333pt;}
.y9b{bottom:739.973333pt;}
.y104{bottom:745.173333pt;}
.y63{bottom:745.733333pt;}
.y3b{bottom:750.053333pt;}
.ybb{bottom:750.933333pt;}
.ye{bottom:751.733333pt;}
.ye1{bottom:754.453333pt;}
.y85{bottom:757.253333pt;}
.y9a{bottom:758.373333pt;}
.y12a{bottom:760.453333pt;}
.y103{bottom:765.413333pt;}
.y3a{bottom:768.453333pt;}
.yba{bottom:769.333333pt;}
.yd{bottom:775.493333pt;}
.y62{bottom:775.973333pt;}
.y129{bottom:778.853333pt;}
.ye0{bottom:780.693333pt;}
.y99{bottom:784.613333pt;}
.y39{bottom:786.853333pt;}
.yb9{bottom:795.093333pt;}
.y61{bottom:797.173333pt;}
.y128{bottom:797.253333pt;}
.yc{bottom:801.413333pt;}
.y38{bottom:805.253333pt;}
.ydf{bottom:806.693333pt;}
.y98{bottom:810.533333pt;}
.yb8{bottom:815.333333pt;}
.yb{bottom:822.773333pt;}
.y60{bottom:823.653333pt;}
.yde{bottom:826.933333pt;}
.y97{bottom:830.853333pt;}
.y37{bottom:831.493333pt;}
.ya{bottom:840.533333pt;}
.y5f{bottom:841.973333pt;}
.y36{bottom:857.973333pt;}
.y5e{bottom:860.373333pt;}
.y9{bottom:875.413333pt;}
.y35{bottom:876.373333pt;}
.y5d{bottom:878.773333pt;}
.y127{bottom:886.773333pt;}
.y34{bottom:894.773333pt;}
.y8{bottom:896.853333pt;}
.y5c{bottom:897.173333pt;}
.y126{bottom:905.173333pt;}
.y33{bottom:913.173333pt;}
.y5b{bottom:915.573333pt;}
.y84{bottom:921.173333pt;}
.y125{bottom:931.573333pt;}
.y32{bottom:939.573333pt;}
.y5a{bottom:941.813333pt;}
.y7{bottom:950.000000pt;}
.y31{bottom:958.000000pt;}
.y6{bottom:968.400000pt;}
.y30{bottom:976.400000pt;}
.y5{bottom:986.800000pt;}
.y2f{bottom:994.800000pt;}
.y59{bottom:1013.040000pt;}
.y4{bottom:1013.200000pt;}
.y1{bottom:1059.760000pt;}
.h28{height:19.600000pt;}
.h25{height:19.680000pt;}
.h27{height:19.760000pt;}
.h13{height:25.045869pt;}
.h14{height:27.898127pt;}
.he{height:27.915568pt;}
.h2a{height:31.306667pt;}
.h26{height:31.406250pt;}
.h29{height:32.250000pt;}
.h7{height:33.918750pt;}
.h12{height:35.402388pt;}
.h16{height:37.131406pt;}
.h1d{height:37.383162pt;}
.hf{height:39.458715pt;}
.h1a{height:40.999292pt;}
.h21{height:43.466564pt;}
.h11{height:44.800167pt;}
.h3{height:46.603437pt;}
.hc{height:49.933269pt;}
.ha{height:52.422344pt;}
.h8{height:52.448437pt;}
.h19{height:52.453320pt;}
.h18{height:52.479429pt;}
.h20{height:53.857500pt;}
.h2b{height:56.156250pt;}
.h17{height:57.599265pt;}
.h15{height:60.589930pt;}
.h22{height:62.370759pt;}
.h24{height:62.401804pt;}
.h1f{height:62.781250pt;}
.h2{height:62.812500pt;}
.h1b{height:64.051117pt;}
.h9{height:64.500000pt;}
.h1c{height:66.281941pt;}
.hb{height:66.750000pt;}
.hd{height:67.532188pt;}
.h4{height:71.210312pt;}
.h6{height:72.332500pt;}
.h5{height:75.142500pt;}
.h10{height:81.372500pt;}
.h23{height:102.298937pt;}
.h1e{height:105.372500pt;}
.h0{height:1122.480000pt;}
.h1{height:1122.666667pt;}
.w7{width:26.960000pt;}
.wa{width:35.920000pt;}
.we{width:35.946667pt;}
.w8{width:36.000000pt;}
.w9{width:44.880000pt;}
.wf{width:44.960000pt;}
.wc{width:54.000000pt;}
.w10{width:54.026667pt;}
.wd{width:56.906667pt;}
.wb{width:80.880000pt;}
.w3{width:166.528701pt;}
.w5{width:273.873109pt;}
.w2{width:309.740387pt;}
.w11{width:382.026667pt;}
.w4{width:510.796021pt;}
.w6{width:581.390837pt;}
.w0{width:793.680000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:1.465434pt;}
.x25{left:3.030947pt;}
.x37{left:7.120000pt;}
.x17{left:18.934196pt;}
.x11{left:24.254690pt;}
.x18{left:28.815897pt;}
.xe{left:34.021867pt;}
.x23{left:43.165365pt;}
.x2a{left:45.791393pt;}
.x15{left:78.357882pt;}
.x33{left:87.103800pt;}
.xc{left:89.610418pt;}
.xf{left:93.116687pt;}
.x1{left:94.560000pt;}
.x16{left:97.625108pt;}
.x14{left:98.573333pt;}
.x9{left:103.360000pt;}
.x12{left:106.849905pt;}
.x29{left:110.370120pt;}
.xd{left:112.028682pt;}
.x10{left:115.536283pt;}
.x7{left:118.560000pt;}
.xa{left:123.360000pt;}
.x5{left:126.880000pt;}
.x8{left:128.560000pt;}
.x3{left:147.440000pt;}
.x1d{left:162.906667pt;}
.x46{left:165.226667pt;}
.x1e{left:166.586667pt;}
.x45{left:182.266667pt;}
.x28{left:201.784487pt;}
.x21{left:206.346667pt;}
.x4{left:208.346667pt;}
.x1b{left:220.826667pt;}
.x3b{left:257.146667pt;}
.xb{left:263.363288pt;}
.x19{left:265.066667pt;}
.x24{left:297.935004pt;}
.x2f{left:299.866667pt;}
.x38{left:302.026667pt;}
.x2d{left:311.146667pt;}
.x39{left:338.026667pt;}
.x43{left:350.906667pt;}
.x6{left:365.306667pt;}
.x2b{left:368.426667pt;}
.x3a{left:373.946667pt;}
.x34{left:383.857983pt;}
.x31{left:390.318907pt;}
.x13{left:404.266667pt;}
.x3d{left:406.106667pt;}
.x3c{left:409.866667pt;}
.x3f{left:445.066667pt;}
.x26{left:460.106443pt;}
.x40{left:481.013333pt;}
.x35{left:490.265441pt;}
.x32{left:496.713180pt;}
.x3e{left:516.933333pt;}
.x41{left:552.853333pt;}
.x30{left:574.151965pt;}
.x2e{left:601.333333pt;}
.x27{left:605.413333pt;}
.x2c{left:618.773333pt;}
.x44{left:668.453333pt;}
.x36{left:675.973333pt;}
.x1f{left:678.453333pt;}
.x2{left:679.413333pt;}
.x47{left:680.373333pt;}
.x42{left:682.293333pt;}
.x1a{left:696.853333pt;}
.x1c{left:698.133333pt;}
.x20{left:700.133333pt;}
}

