diff --git a/Apollo/api/application/config/routes.php b/Apollo/api/application/config/routes.php
index a91d9736..34c76765 100755
--- a/Apollo/api/application/config/routes.php
+++ b/Apollo/api/application/config/routes.php
@@ -191,6 +191,7 @@ $route['filterYear'] = 'Dashboard_Controller/filterYear';
/*login page announcement*/
$route['getLoginAnnouncementDetails'] = 'Login_Controller/getLoginAnnouncementDetails';
$route['VerifyEmpOTP'] = 'Login_Controller/VerifyEmpOTP';
+$route['mailto'] = 'Login_Controller/mailto';
/* status */
diff --git a/Apollo/api/application/controllers/Login_Controller.php b/Apollo/api/application/controllers/Login_Controller.php
index ea1ceca3..4ac20c8c 100755
--- a/Apollo/api/application/controllers/Login_Controller.php
+++ b/Apollo/api/application/controllers/Login_Controller.php
@@ -30,6 +30,7 @@ class Login_Controller extends REST_Controller {
$this->methods['login_post']['limit'] = 100; // 100 requests per hour per user/key
$this->methods['login_delete']['limit'] = 50; // 50 requests per hour per user/key
$this->load->model('Login_model', 'login_model');
+
$this->load->model('Announcement_model', 'announcement_model');
}
@@ -164,7 +165,31 @@ class Login_Controller extends REST_Controller {
], REST_Controller::HTTP_NOT_FOUND); // NOT_FOUND (404) being the HTTP response code
}
}
+
+ public function mailto_post(){
+// echo('hi');
+ $firstname = $this->post('firstname');
+ $Comments =$this->post('Comments');
+ $emailId =$this->post('emailId');
+ $primaryPhone =$this->post('primaryPhone');
+
+ $getstudent = $this->login_model->mailto($firstname,$primaryPhone,$emailId,$Comments);
+ if ($getstudent)
+ {
+ // $getstudent['status'] = REST_Controller::HTTP_OK;
+ // Set the response and exit
+ $this->response($getstudent, REST_Controller::HTTP_OK); // OK (200) being the HTTP response code
+ }
+ else
+ {
+ // Set the response and exit
+ $this->response([
+ 'message' => 'No users were found',
+ 'status' => REST_Controller::HTTP_NOT_FOUND
+ ], REST_Controller::HTTP_NOT_FOUND); // NOT_FOUND (404) being the HTTP response code
+ }
+ }
public function changePasswordLogin_post()
{
diff --git a/Apollo/api/application/models/Hallticket_model.php b/Apollo/api/application/models/Hallticket_model.php
index e079c629..1587c0e5 100644
--- a/Apollo/api/application/models/Hallticket_model.php
+++ b/Apollo/api/application/models/Hallticket_model.php
@@ -947,7 +947,7 @@ BalFees.semyr');
//attendance save data start
- $this->saveDataForExamAttendance($UID,$courseID=null,$batch,$requestedBy,$branchId,$center,$data,$Course_array,$result_array);
+ // $this->saveDataForExamAttendance($UID,$courseID=null,$batch,$requestedBy,$branchId,$center,$data,$Course_array,$result_array);
//attendance end
diff --git a/Apollo/api/application/models/Login_model.php b/Apollo/api/application/models/Login_model.php
index 6d74668d..6917fc4f 100755
--- a/Apollo/api/application/models/Login_model.php
+++ b/Apollo/api/application/models/Login_model.php
@@ -452,7 +452,40 @@ class Login_model extends CI_Model
}
+ public function mailto($firstname,$primaryPhone,$emailId,$Comments){
+
+ // echo('SEND');
+ $this->load->library('email');
+ //SMTP & mail configuration
+ $config = array(
+ 'protocol' => 'smtp',
+ 'smtp_host' => 'smtp.sendgrid.net',
+ 'smtp_port' => 587,
+ 'smtp_user' => 'apikey',
+ 'smtp_pass' => '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',
+ 'mailtype' => 'html',
+ 'charset' => 'utf-8'
+ );
+ $this->email->initialize($config);
+ $this->email->set_mailtype("html");
+ $this->email->set_newline("\r\n");
+
+ $htmlContent ='Name'.' '.$firstname.'
'. 'ContactNumber'.' '. $primaryPhone .'
'.'EmailID' .' '.$emailId .'
'.'Comments'.' '.$Comments;
+
+ $this->email->to('rajasamy1991@gmail.com');
+ $this->email->from($emailId);
+ $subj = 'Student Enquiry';
+ $this->email->subject($subj);
+ $this->email->message($htmlContent);
+ //Send email 1
+ $result = $this->email->send();
+ return $result;
+
+
+
+
+ }
public function Emplogin($EmpID,$OTP,$Password)
diff --git a/Apollo/api/application/models/Reports_model.php b/Apollo/api/application/models/Reports_model.php
index 23bb9af3..bb6ff02b 100755
--- a/Apollo/api/application/models/Reports_model.php
+++ b/Apollo/api/application/models/Reports_model.php
@@ -1252,7 +1252,9 @@ T_Students_Fees_PaidDetails.FeesId=T_Registration_Details.Student_Fee_Status_Id
T_Students_Fees_PaidDetails.Installment='1'
left JOIN T_BatchMaster ON T_BatchMaster.BatchCode = T_Registration_Details.BatchCode
-left JOIN T_StaffDetails ON T_StaffDetails.StaffID = T_StudentDetails.AdmittedBy
+
+left join T_Login on T_Login.id =T_Students_Fees_PaidDetails.CreatedBy
+left JOIN T_StaffDetails ON T_StaffDetails.StaffID =T_Login.StaffID
left JOIN T_Course_Fees_Details on T_Course_Fees_Details.ID=T_Registration_Details.FeeType and T_Course_Fees_Details.CourseID=T_Registration_Details.CourseID
WHERE T_Registration_Details.RegistrationType = '".$regconst."' and T_Registration_Details.RegistrationMode='1' and T_Registration_Details.BranchCode= '".$branch."'";
@@ -1294,8 +1296,8 @@ $query = $this->db->query($subQuery,array('%d-%m-%Y'));
$searchDetails =$query->result();
- //print_r( $this->db->last_query());
- //die();
+ // print_r( $this->db->last_query());
+ // die();
//print_r($searchDetails);die();
diff --git a/Apollo/assets/images/ksou.jpg b/Apollo/assets/images/ksou.jpg
new file mode 100644
index 00000000..2895926f
Binary files /dev/null and b/Apollo/assets/images/ksou.jpg differ
diff --git a/Apollo/assets/images/ksou1.jpg b/Apollo/assets/images/ksou1.jpg
new file mode 100644
index 00000000..1f17a7ff
Binary files /dev/null and b/Apollo/assets/images/ksou1.jpg differ
diff --git a/Apollo/assets/images/ku.jpg b/Apollo/assets/images/ku.jpg
new file mode 100644
index 00000000..58d103aa
Binary files /dev/null and b/Apollo/assets/images/ku.jpg differ
diff --git a/Apollo/assets/images/ku1.jpg b/Apollo/assets/images/ku1.jpg
new file mode 100644
index 00000000..b13934a7
Binary files /dev/null and b/Apollo/assets/images/ku1.jpg differ
diff --git a/Apollo/assets/js/controllers/loginCtrl.js b/Apollo/assets/js/controllers/loginCtrl.js
index 24be7a29..eb4a6317 100644
--- a/Apollo/assets/js/controllers/loginCtrl.js
+++ b/Apollo/assets/js/controllers/loginCtrl.js
@@ -435,10 +435,65 @@ $scope.EmpLogin=function(myModel)
}
}
+ // $scope.tempModel = "default";
+ // $scope.mailto = function(data)
+ // {
+ // console.log("hi");
+ // console.log(data);
+ // }
+
+$scope.mailto = function(data){
+ // console.log('hi');
+ // console.log(data);
+
+ var firstname = data.firstname;
+ var primaryPhone = data.primaryPhone;
+ var emailId = data.emailId;
+ var Comments =data.Comments;
+ if((firstname == undefined)||(primaryPhone =="")||(emailId == undefined)||(Comments == undefined))
+ {
+
+ swal("Please Enter all the Fields");
+ }
+ else{
+ // swal("submit");
+ var reg = {
+ method: 'POST',
+ url: apiPoint.url + 'mailto/',
+ headers: { 'Content-Type': 'application/json' },
+ data: {firstname:firstname,primaryPhone:primaryPhone,emailId:emailId,Comments:Comments}
+ // console.los(data);
+ };
+ }
+
+ $http(reg).then(function (response) {
+
+ console.log(response.data)
+
+
+ if(response.data.updateStatus == true)
+ {
+ swal("Success",response.data.message, "success");
+ }
+ // swal(" Success", message, "success");
+ // form.$setPristine(true);
+ $scope.myModel = {
+ firstname: "",
+ primaryPhone: "",
+ emailId: "",
+ Comments:""
+ };
+
+ swal("Success",response.data.message, "success");
+
+ })
+
+}
+
}]);
diff --git a/Apollo/assets/views/login_login.html b/Apollo/assets/views/login_login.html
index a313ec0c..dd8f69fc 100755
--- a/Apollo/assets/views/login_login.html
+++ b/Apollo/assets/views/login_login.html
@@ -7,8 +7,13 @@
body {
font: 400 15px Lato, sans-serif;
line-height: 1.8;
- color: #818181;
+ color: #f7f7f8
}
+ h5{
+ color:#aeacb4;
+ }
+ }
+
h2 {
font-size: 24px;
text-transform: uppercase;
@@ -19,7 +24,7 @@
h4 {
font-size: 19px;
line-height: 1.375em;
- color: #303030;
+ color: #959595;
font-weight: 400;
margin-bottom: 30px;
}
@@ -303,9 +308,368 @@
color: #fff;
}
+
+.body .regular_course ul, .body .ssk ul, .body .IIE ul, .body .rvu ul, .body .ksou ul, .body .voice-lesson ul {
+ background-color:#f7f7f8;
+ border:1px solid #dfe1e4;
+ border-radius:10px;
+ float:left;
+ list-style:none;
+ margin:0 19px 0 0;
+ padding:0;
+ width:25%;
+}
+.body .regular_course ul li.selected, .body .regular_course ul li:hover, .body .ssk ul li.selected, .body .ssk ul li:hover, .body .IIE ul li.selected, .body .IIE ul li:hover, .body .rvu ul li.selected, .body .rvu ul li:hover, .body .ksou ul li.selected, .body .ksou ul li:hover, .body .voice-lesson ul li.selected, .body .voice-lesson ul li:hover {
+ background-color:#fff;
+ border-radius:0;
+}
+.body .regular_course ul li.last:hover, .body .ssk ul li.last:hover, .body .IIE ul li.last:hover, .body .rvu ul li.last:hover, .body .ksou ul li.last:hover, .body .voice-lesson ul li.selected.last, .body .voice-lesson ul li.last:hover {
+ border-radius:0 0 10px 10px;
+}
+.body .regular_course ul li, .body .ssk ul li, .body .IIE ul li, .body .rvu ul li, .body .ksou ul li, .body .voice-lesson ul li {
+ border-top:1px solid #dfe1e4;
+}
+.body .regular_course ul li a, .body .ssk ul li a, .body .IIE ul li a, .body .rvu ul li a, .body .ksou ul li a, .body .voice-lesson ul li a {
+ color:#6a7578;
+ display:block;
+ font-size:14px;
+ letter-spacing:.025em;
+ line-height:24px;
+ padding:14px 0 10px 19px;
+ text-decoration:none;
+ text-transform:uppercase;
+}
+.body .regular_course .content, .body .ssk .content, .body .IIE .content, .body .rvu .content, .body .ksou .content, .body .voice-lesson .content {
+ background-color:#FFF;
+ border:1px solid #DFE1E4;
+ border-radius:10px 10px 10px 10px;
+ float:left;
+ padding:17px 0 0;
+ width:73%;
+}
+.body .regular_course .content div:first-child, .body .rvu .content div:first-child, .body .voice-lesson .content div:first-child {
+ border-bottom:1px solid #dfe1e4;
+ overflow:hidden;
+ padding:0 0 18px;
+ width:788px;
+}
+.body .regular_course .content div:first-child h2, .body .ssk .content div:first-child h2, .body .rvu .content div:first-child h2, .body .ksou .content div:first-child h2 {
+ color:#EC7500;
+ font-family:Georgia, "Times New Roman", Times, serif;
+ font-size:30px;
+ font-weight:400;
+ letter-spacing:.025em;
+ line-height:48px;
+ margin:0 18px 0 19px;
+ width:auto;
+}
+.body .regular_course .content div:first-child h2 a, .body .ssk .content div:first-child h2 a, .body .IIE .content div:first-child h2 a, .body .rvu .content div:first-child h2 a, .body .ksou .content div:first-child h2 a, .body .voice-lesson .content div:first-child h2 a {
+ color:#EC7500;
+ display:inline;
+ float:none;
+ margin:0;
+ padding:0;
+}
+.body .regular_course .content div:first-child div, .body .rvu .content div:first-child div {
+ float:left;
+ margin:0 19px;
+ padding:5px;
+ width:100%;
+}
+.body .regular_course .content div:first-child div p, .body .rvu .content div:first-child div p, .body .ksou .content div:first-child div p {
+ color:#6B7073;
+ font-size:14px;
+ letter-spacing:.05em;
+ line-height:24px;
+ margin:19px 0 24px;
+ text-align:justify;
+}
+.body .regular_course .content div:first-child div p a, .body .ssk .content div:first-child div p a, .body .IIE .content div:first-child div p a, .body .rvu .content div:first-child div p a, .body .ksou .content div:first-child div p a, .body .voice-lesson .content div:first-child div p a {
+ color:#6B7073;
+ display:inline;
+ float:none;
+ margin:0;
+}
+.body .regular_course .content div:first-child div p a:hover, .body .ssk .content div:first-child div p a:hover, .body .IIE .content div:first-child div p a:hover, .body .rvu .content div:first-child div p a:hover, .body .ksou .content div:first-child div p a:hover, .body .voice-lesson .content div:first-child div p a:hover {
+ color:#EC7500;
+}
+.body .regular_course .content div:first-child a, .body .ssk .content div:first-child a, .body .IIE .content div:first-child a, .body .rvu .content div:first-child a, .body .ksou .content div:first-child a, .body .voice-lesson .content div:first-child a {
+ display:block;
+ float:left;
+ margin:26px 30px 0 0;
+}
+.body .regular_course .content div.section, .body .ssk .content div.section, .body .IIE .content div.section, .body .rvu .content div.section, .body .ksou .content div.section, .body .voice-lesson .content div.section {
+ border-right:1px solid #DFE1E4;
+ float:left;
+ padding:15px 0 54px 19px;
+ width:500px;
+}
+.body .regular_course .content div.section div:first-child, .body .regular_course .content div ul li:first-child, .body .ssk .content div.section div:first-child, .body .ssk .content div ul li:first-child, .body .IIE .content div.section div:first-child, .body .IIE .content div ul li:first-child, .body .rvu .content div.section div:first-child, .body .rvu .content div ul li:first-child, .body .ksou .content div.section div:first-child, .body .ksou .content div ul li:first-child, .body .voice-lesson .content div.section div:first-child, .body .voice-lesson .content div ul li:first-child {
+ margin:0;
+}
+.body .regular_course .content div.section div, .body .ssk .content div.section div, .body .IIE .content div.section div, .body .rvu .content div.section div, .body .ksou .content div.section div, .body .voice-lesson .content div.section div {
+ border:0;
+ margin:24px 0 0;
+ padding:0 30px 0 0;
+ width:auto;
+}
+.body .regular_course .content div.section div h4, .body .ssk .content div.section div h4, .body .IIE .content div.section div h4, .body .rvu .content div.section div h4, .body .ksou .content div.section div h4, .body .voice-lesson .content div.section div h4 {
+ color:#6B7073;
+ font-size:14px;
+ font-weight:700;
+ letter-spacing:.05em;
+ line-height:24px;
+ margin:0;
+ text-align:justify;
+ text-transform:uppercase;
+}
+.body .regular_course .content div.section div span, .body .regular_course .content div.section div p, .body .ssk .content div.section div span, .body .ssk .content div.section div p, .body .IIE .content div.section div span, .body .IIE .content div.section div p, .body .rvu .content div.section div span, .body .rvu .content div.section div p, .body .ksou .content div.section div span, .body .ksou .content div.section div p, .body .voice-lesson .content div.section div span, .body .voice-lesson .content div.section div p, .body .blog-single div:first-child div p {
+ color:#6B7073;
+ font-size:14px;
+ letter-spacing:.05em;
+ line-height:24px;
+ margin:0;
+ text-align:justify;
+}
+.body .regular_course .content div.section div p a, .body .ssk .content div.section div p a, .body .IIE .content div.section div p a, .body .rvu .content div.section div p a, .body .ksou .content div.section div p a, .body .voice-lesson .content div.section div p a, .body .blog-single div:first-child div p a {
+ margin:0;
+ float:none;
+ display:inline;
+ color:#6B7073;
+}
+.body .regular_course .content div.section div p a:hover, .body .ssk .content div.section div p a:hover, .body .IIE .content div.section div p a:hover, .body .rvu .content div.section div p a:hover, .body .ksou .content div.section div p a:hover, .body .voice-lesson .content div.section div p a:hover, .body .blog-single div:first-child div p a:hover {
+ color: #FF8B00;
+}
+.body .regular_course .content div, .body .ssk .content div, .body .IIE .content div, .body .rvu .content div, .body .ksou .content div, .body .voice-lesson .content div {
+ float:left;
+ padding:15px 27px 54px 19px;
+ width:221px;
+}
+.body .regular_course .content div h4, .body .ssk .content div h4, .body .IIE .content div h4, .body .rvu .content div h4, .body .ksou .content div h4, .body .voice-lesson .content div h4 {
+ color:#6B7073;
+ font-size:14px;
+ font-weight:700;
+ /*letter-spacing:.05em;*/
+ line-height:24px;
+ margin:0;
+ text-align:justify;
+ text-transform:uppercase;
+}
+.body .regular_course .content div ul, .body .ssk .content div ul, .body .IIE .content div ul, .body .rvu .content div ul, .body .ksou .content div ul, .body .voice-lesson .content div ul {
+ background:none!important;
+ border:0;
+ margin:0;
+ width:auto;
+}
+.body .regular_course .content div ul li, .body .ssk .content div ul li, .body .IIE .content div ul li, .body .rvu .content div ul li, .body .ksou .content div ul li, .body .voice-lesson .content div ul li {
+ border:0;
+ margin:24px 0 0;
+}
+.body .regular_course .content div ul li span:first-child, .body .ssk .content div ul li span:first-child, .body .IIE .content div ul li span:first-child, .body .rvu .content div ul li span:first-child, .body .ksou .content div ul li span:first-child, .body .voice-lesson .content div ul li span:first-child {
+ text-align:left;
+}
+.body .regular_course .content div ul li span, .body .ssk .content div ul li span, .body .IIE .content div ul li span, .body .rvu .content div ul li span, .body .ksou .content div ul li span, .body .voice-lesson .content div ul li span {
+ color:#6B7073;
+ display:block;
+ font-size:14px;
+ letter-spacing:.05em;
+ line-height:24px;
+ margin:0;
+ text-align:right;
+}
+.body .regular_course .content div ul li span span:first-child, .body .ssk .content div ul li span span:first-child, .body .IIE .content div ul li span span:first-child, .body .rvu .content div ul li span span:first-child, .body .ksou .content div ul li span span:first-child, .body .voice-lesson .content div ul li span span:first-child {
+ display:inline-block;
+ width:70px;
+}
+.body .ssk .content div:first-child, .body .IIE .content div:first-child {
+ border-bottom:1px solid #dfe1e4;
+ overflow:hidden;
+ padding:0 0 30px;
+ width:788px;
+}
+.body .ssk .content div:first-child div h3, .body .IIE .content div:first-child div h3, .body .voice-lesson .content div:first-child div h3 {
+ color:#444;
+ font-size:14px;
+ font-weight:400;
+ letter-spacing:.05em;
+ line-height:24px;
+ margin:0;
+ text-align:justify;
+}
+.body .ssk .content div:first-child div h3 a, .body .IIE .content div:first-child div h3 a, .body .voice-lesson .content div:first-child div h3 a {
+ margin:0;
+ display:inline;
+ float:none;
+ color:#444;
+}
+.body .ssk .content div:first-child div h3 a:hover, .body .IIE .content div:first-child div h3 a:hover, .body .voice-lesson .content div:first-child div h3 a:hover {
+ color: #FF8B00;
+}
+.body .ssk .content div:first-child div p, .body .IIE .content div:first-child div p, .body .voice-lesson .content div:first-child div p {
+ color:#6B7073;
+ font-size:14px;
+ letter-spacing:.05em;
+ line-height:24px;
+ margin:0 0 24px;
+ text-align:justify;
+}
+.body .IIE .content div:first-child h2, .body .voice-lesson .content div:first-child h2 {
+ color:#EC7500;
+ font-family:Georgia, "Times New Roman", Times, serif;
+ font-size:30px;
+ font-weight:400;
+ letter-spacing:.025em;
+ line-height:48px;
+ margin:0 0 19px;
+ width:auto;
+}
+.body .IIE .content div:first-child div:first-child, .body .voice-lesson .content div:first-child div:first-child {
+ border:0;
+ float:left;
+ margin:0 19px;
+ padding:5px 0 0;
+ width:100%;
+ border-bottom: 1px solid #dfe1e4;
+}
+.body .IIE .content div:first-child div, .body .voice-lesson .content div:first-child div {
+ border: 0;
+ float: left;
+ margin: 0px 19px;
+ overflow: hidden;
+ padding: 5px 0;
+ width: 100%;
-
+}
+.body .IIE .content div:first-child div a, .body .voice-lesson .content div:first-child div a {
+ float:none;
+ margin:0 0 25px;
+}
+.body .blog .section:first-child div span, .body .blog .section:first-child div div span, .body .blog-single div:first-child div span {
+ border-bottom:2px solid #FF8B00;
+ color:#6B7073;
+ display:inline;
+ font-size:14px;
+ left:0;
+ letter-spacing:.05em;
+ line-height:24px;
+ padding:0 0 1px 17px;
+ position:absolute;
+ top:13px;
+ width:70px;
+}
+.body .blog .section:first-child div img, .body .blog .section div:first-child div ul li img {
+ border:1px solid #B3B7BB;
+ float:left;
+ margin:0 20px 0 0;
+}
+.body .blog .section:first-child div p, .body .blog .section:first-child div div p {
+ color:#6B7073;
+ font-size:14px;
+ letter-spacing:.05em;
+ line-height:24px;
+ margin:0;
+ text-align:justify;
+}
+.body .blog .section:first-child div div > a, .body .blog .section:first-child div > a {
+ color:#6b7073;
+ text-decoration:none;
+ font-size:14px;
+ line-height:24px;
+ letter-spacing:0.05em;
+}
+.body .blog .section:first-child div div > a:hover, .body .blog .section:first-child div > a:hover {
+ color:#ff8b00;
+}
+.body .blog .section:first-child div p a, .body .blog .section:first-child div div p a {
+ color:#6B7073;
+}
+.body .blog .section:first-child div p a:hover, .body .blog .section:first-child div div p a:hover {
+ color: #FF8B00;
+}
+.body .blog .section:first-child div div h3 a:hover, .body .blog .section:first-child div div p a:hover, .body .blog .section div div ul li p a.more:hover, .body .blog-single div:first-child div h3 a:hover, .body .blog-single div:first-child div p a:hover, .body .blog-single div div:first-child ul li h3 a:hover {
+ color:#FF8B00;
+}
+.body .blog .section:first-child div div p a, .body .blog-single div:first-child div p a {
+ color:#6B7073;
+}
+.body .blog .section div:first-child h2, .body .blog .section div h2, .body .blog-single div h2 {
+ color:#FF8B00;
+ font-size:16px;
+ font-weight:400;
+ letter-spacing:.025em;
+ line-height:24px;
+ margin:0 0 9px;
+ text-transform:uppercase;
+}
+.body .blog .section div ul li, .body .blog-single div ul li {
+ border-top:1px solid #E1E3E6;
+ padding:13px 24px;
+}
+.body .blog .section div ul li a, .body .blog-single div ul li a {
+ color:#6B7073;
+ display:inline;
+ font-size:14px;
+ letter-spacing:.05em;
+ line-height:24px;
+ margin:0;
+ text-align:left;
+ text-decoration:none;
+}
+.body .blog .section div ul li a:hover, .body .blog-single div ul li a:hover {
+ text-decoration:underline;
+}
+.body .blog .section div ul li p a, .body .blog-single div ul li p a {
+ color:#6B7073;
+}
+.body .blog .section div ul li p a:hover, .body .blog-single div ul li p a:hover {
+ color: #FF8B00;
+}
+.body .contact div form div:first-child label, .body .contact div form div label {
+ color:#6B7073;
+ display:block;
+ font-size:14px;
+ height:36px;
+ letter-spacing:.075em;
+ line-height:37px;
+}
+.body .home .content .featured p a:hover, .body .about div div p a:hover, .body .about div.sidebar ul:first-child li:hover span a, .body .about div.sidebar div ul li h2 a:hover, .body .regular_course ul li.selected a, .body .regular_course ul li a:hover, .body .regular_course ul li:hover a, .body .ssk ul li.selected a, .body .ssk ul li a:hover, .body .ssk ul li:hover a, .body .IIE ul li.selected a, .body .IIE ul li a:hover, .body .IIE ul li:hover a, .body .rvu ul li.selected a, .body .rvu ul li a:hover, .body .rvu ul li:hover a, .body .ksou ul li.selected a, .body .ksou ul li a:hover, .body .ksou ul li:hover a, .body .voice-lesson ul li.selected a, .body .voice-lesson ul li a:hover, .body .voice-lesson ul li:hover a, .body .contact div:first-child div:first-child p a:hover {
+ color: #light blue;
+}
+
+ #about{
+ border-color: #076ae4;
+ box-shadow: 0 0 28px #69a9e0 inset;
+ }
+ #ku1
+ {border-color: #076ae4;
+ box-shadow: 0 0 28px #69a9e0 inset;}
+ #ksou1
+ {border-color: #076ae4;
+ box-shadow: 0 0 28px #69a9e0 inset;}
+ #ku
+ {border-color: #076ae4;
+ box-shadow: 0 0 28px #69a9e0 inset;}
+ #ksou
+ {border-color: #076ae4;
+ box-shadow: 0 0 28px #69a9e0 inset;}
+ #i
+ {border-color: #076ae4;
+ box-shadow: 0 0 28px #69a9e0 inset;}
+ #newstud
+ {border-color: #076ae4;
+ box-shadow: 0 0 28px #69a9e0 inset;
+ color: #f7f7f8;}
+ #DE
+ {border-color: #076ae4;
+ box-shadow: 0 0 28px #69a9e0 inset;}
+ .form-control {
+ color: block;
+ }
+ #reg{border-color: #076ae4;
+ box-shadow: 0 0 28px #69a9e0 inset;}
+
+
Lorem ipsum dolor sit amet..
-Lorem ipsum dolor sit amet..
-