<c:set var="production">
  <asi:out value="${SUITE_CONFIG.production}" encoding="js" />
</c:set>
<c:choose>
  <c:when test="${production=='true'}">
    <c:choose>
      <c:when test="${sessionScope['IS_RTL']}">
        <link rel="stylesheet" href="<asi:url value='/portal/css/standard_styles_static_ar.css' />" type="text/css" />
      </c:when>
      <c:otherwise>
        <link rel="stylesheet" href="<asi:url value='/portal/css/standard_styles_static.css' />" type="text/css" />
      </c:otherwise>
    </c:choose>

  </c:when>
  <c:otherwise>
    <c:choose>
      <c:when test="${sessionScope['IS_RTL']}">

        <link rel="stylesheet" href="<asi:url value='/portal/css/standard_styles_ar.jsp' />" type="text/css" />
      </c:when>
      <c:otherwise>

        <link rel="stylesheet" href="<asi:url value='/portal/css/standard_styles.jsp' />" type="text/css" />
      </c:otherwise>
    </c:choose>

  </c:otherwise>
</c:choose>
